home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2000 September / maximum-cd-2000-09.iso / Vampire the Masquerade / vampire_demo.exe / Codex.nob / EffectDiscBloodOfPotency.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-22  |  1.8 KB  |  39 lines

  1. public class EffectDiscBloodOfPotency extends Codex {
  2.    private int padGuid;
  3.  
  4.    public void EndEffect(int targetGuid) {
  5.       CodexThing pad = new CodexThing(this.padGuid);
  6.       pad.Remove();
  7.       CodexActor _Creator = new CodexActor(targetGuid);
  8.       ((CodexThing)_Creator).EndShell();
  9.       _Creator.RemoveActorEffect("ef_disc_bloodofpotency2");
  10.    }
  11.  
  12.    public void restore(int flags) {
  13.       this.padGuid = CodexSequence.RestoreInt();
  14.    }
  15.  
  16.    public void effectstarted(int actorGuid, int effectGuid, int creatorGuid, int duration) {
  17.       CodexActor _Creator = new CodexActor(creatorGuid);
  18.       ((CodexThing)_Creator).SpawnThing("redMagic");
  19.       ((CodexThing)_Creator).SetShell("redCloudShell", 4096, 0.0F, 0.3F, 1.0F, 1.0F);
  20.       this.padGuid = ((CodexThing)_Creator).SpawnThing("ankhsPadRed");
  21.       float[] offset = new float[3];
  22.       offset[0] = offset[1] = offset[2] = 0.0F;
  23.       ((CodexThing)_Creator).AttachThing(this.padGuid, -1, offset, 1);
  24.       ((Codex)this).CaptureThing(creatorGuid);
  25.    }
  26.  
  27.    public void killed(int guid, int causeID, int captureID) {
  28.       this.EndEffect(guid);
  29.    }
  30.  
  31.    public void save(int flags) {
  32.       CodexSequence.SaveInt(this.padGuid);
  33.    }
  34.  
  35.    public void effectended(int actorGuid, int effectGuid, int creatorGuid, int reason) {
  36.       this.EndEffect(actorGuid);
  37.    }
  38. }
  39.